The product of two quaternions is still a quaternion (and quaternions are not vectors). You did the multiplication wrong up there, if A and B are as you had then AB is -7i + 6j + k - 1.
You can define many products between vectors, for example in \mathbb{R}^3 you have the usual cross and dot products (and the dot product generalizes to other spaces of course). Those two products can be read off the result of quaternion multiplication:
<1,1,1> \times <2,3,4> = <-7,6,1>
and
<1,1,1> \cdot <2,3,4> = 1 = -(-1).
In general if the product of two quaternions A = a_1 i + a_2 j + a_3 k and B = b_1 i + b_2 j + b_3 k is AB = C = c_1 i + c_2 j + c_3 k - c_4, then <a_1, a_2, a_3> \times <b_1, b_2, b_3> = <c_1, c_2, c_3> and <a_1, a_2, a_3> \cdot <b_1, b_2, b_3> = c_4.